5
|
How do I put a picture on the control's background

with AxScrollBar1 do
begin
(GetOcx() as EXSCROLLBARLib.ScrollBar).Picture := AxScrollBar1.ExecuteTemplate('loadpicture(`c:\exontrol\images\zipdisk.gif`)');
set_VisiblePart(EXSCROLLBARLib.PartEnum.exBackgroundPart,False);
(GetOcx() as EXSCROLLBARLib.ScrollBar).BackColor := $80000004;
end
|
4
|
How can I change the size of control's font

with AxScrollBar1 do
begin
Font.Size := 12;
ForeColor := Color.FromArgb(255,0,0);
set_Caption(EXSCROLLBARLib.PartEnum.exThumbPart,'<img>0</img>thumb');
end
|
3
|
How do I change the control's font

with AxScrollBar1 do
begin
Font.Name := 'Tahoma';
ForeColor := Color.FromArgb(255,0,0);
set_Caption(EXSCROLLBARLib.PartEnum.exThumbPart,'<img>0</img>thumb');
end
|
2
|
How can I change the control's foreground color

with AxScrollBar1 do
begin
ForeColor := Color.FromArgb(255,0,0);
set_Caption(EXSCROLLBARLib.PartEnum.exThumbPart,'<img>0</img>thumb');
end
|
1
|
How can I change the control's background color

with AxScrollBar1 do
begin
BackColor := Color.FromArgb(0,255,0);
set_VisiblePart(EXSCROLLBARLib.PartEnum.exBackgroundPart,False);
end
|